Release prep — bump to 0.2.1 and roll up CHANGELOG#58
Merged
Conversation
The polish + cleanup release. Half ergonomic improvements (`draftwise init` auto-detects new project vs existing codebase from the filesystem instead of asking; plain-language UX throughout init — #51), half code-quality work (five small dedup + tidy PRs that shrink the public API surface, fix two user-visible `draft` → `draftwise` typos in error messages, and consolidate drafting-command boilerplate behind shared helpers — #53/#54/#55/#56/#57). One genuinely new surface: `draftwise skills <install|uninstall|help>` drops standalone slash-command skills into Claude Code, Cursor, and Gemini CLI's user-level skill dirs (#52) — same SKILL.md, per-provider frontmatter trim — independent of the Claude Code marketplace plugin. Bumps `package.json` + `package-lock.json` from 0.2.0 → 0.2.1. Patch bump because the additive `skills` verb is non-breaking and the removed prompt aliases (`PLAN_SYSTEM`, `SPEC_SYSTEM`, `tech.SYSTEM`, `tasks.SYSTEM`) were never imported by anyone outside this repo (verified by audit). Rolls all [Unreleased] entries into [0.2.1] — 2026-04-29 — Ankur, with a fresh empty [Unreleased] block above. After merge, ritual: `git tag -a v0.2.1 -m "v0.2.1"`, `git push origin v0.2.1`, `npm publish` (interactive — OTP + login may be needed if the npm session expired).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The polish + cleanup release. Rolls everything since 0.2.0 (PRs #51–#57) into a versioned section.
Theme. Half ergonomic improvements (init auto-detects new-vs-existing project from the filesystem; plain-language UX), half code-quality work (5 small dedup + tidy PRs). One genuinely new surface:
draftwise skills <install|uninstall|help>for Claude Code / Cursor / Gemini CLI standalone skill installs.Why patch (0.2.1) and not minor (0.3.0). The additive
skillsverb is non-breaking; the removed prompt aliases (PLAN_SYSTEM,SPEC_SYSTEM,tech.SYSTEM,tasks.SYSTEM) were never imported outside this repo, audited by grep. Conservative bump per project convention. If you want to flag the newskillssurface louder for users — bump this to 0.3.0 before merging. Just editpackage.json+package-lock.json+ the CHANGELOG header. No code change needed.What's in the release (all entries already drafted under
[0.2.1]in CHANGELOG):initauto-detects from filesystemdraftwise skills <install|uninstall|help>draft→draftwisetyposscanreusescompactScanextractJsonFromFenceextracted to shared utilloadAnswersFlagextracted to shared utilVerification
npm test— 332 passing (38 files)npm run lint— cleannpm pack --dry-run— 58 files, 69 kB tarball, 227.7 kB unpacked. No surprises (5 new util files vs 0.2.0's 53)prepublishOnlywill runnpm test && npm run lintagain at publish timeAfter merge — ritual